From f6c5b74fb725d3f9165ca1013c0fe9a029067ab5 Mon Sep 17 00:00:00 2001 From: GMT 1998 Tony Gale Date: Tue, 8 Dec 1998 18:04:58 +0000 Subject: [PATCH] simple top level Makefile that invokes all the sub-directory Makefiles. Tue Dec 8 18:02:57 GMT 1998 Tony Gale * examples/Makefile: simple top level Makefile that invokes all the sub-directory Makefiles. --- ChangeLog | 5 +++++ ChangeLog.pre-2-0 | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-2 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ examples/Makefile | 19 +++++++++++++++++++ 8 files changed, 54 insertions(+) create mode 100644 examples/Makefile diff --git a/ChangeLog b/ChangeLog index 0a009aca25..30b1315e4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 8 18:02:57 GMT 1998 Tony Gale + + * examples/Makefile: simple top level Makefile that invokes all + the sub-directory Makefiles. + 1998-12-08 Andrew T. Veliath * gtk/testgtk.c: Functions to test the toolbar space style. diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 0a009aca25..30b1315e4a 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +Tue Dec 8 18:02:57 GMT 1998 Tony Gale + + * examples/Makefile: simple top level Makefile that invokes all + the sub-directory Makefiles. + 1998-12-08 Andrew T. Veliath * gtk/testgtk.c: Functions to test the toolbar space style. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 0a009aca25..30b1315e4a 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Tue Dec 8 18:02:57 GMT 1998 Tony Gale + + * examples/Makefile: simple top level Makefile that invokes all + the sub-directory Makefiles. + 1998-12-08 Andrew T. Veliath * gtk/testgtk.c: Functions to test the toolbar space style. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 0a009aca25..30b1315e4a 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +Tue Dec 8 18:02:57 GMT 1998 Tony Gale + + * examples/Makefile: simple top level Makefile that invokes all + the sub-directory Makefiles. + 1998-12-08 Andrew T. Veliath * gtk/testgtk.c: Functions to test the toolbar space style. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 0a009aca25..30b1315e4a 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Tue Dec 8 18:02:57 GMT 1998 Tony Gale + + * examples/Makefile: simple top level Makefile that invokes all + the sub-directory Makefiles. + 1998-12-08 Andrew T. Veliath * gtk/testgtk.c: Functions to test the toolbar space style. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 0a009aca25..30b1315e4a 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Tue Dec 8 18:02:57 GMT 1998 Tony Gale + + * examples/Makefile: simple top level Makefile that invokes all + the sub-directory Makefiles. + 1998-12-08 Andrew T. Veliath * gtk/testgtk.c: Functions to test the toolbar space style. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 0a009aca25..30b1315e4a 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Tue Dec 8 18:02:57 GMT 1998 Tony Gale + + * examples/Makefile: simple top level Makefile that invokes all + the sub-directory Makefiles. + 1998-12-08 Andrew T. Veliath * gtk/testgtk.c: Functions to test the toolbar space style. diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000000..a5396d2aab --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,19 @@ + +SUBDIRS = aspectframe eventbox gtkdial notebook progressbar scrolledwin tictactoe \ + clist filesel list paned rulers table \ + entry menu pixmap scribble-simple text \ + base helloworld packbox radiobuttons selection tree \ + buttons helloworld2 packer rangewidgets statusbar wheelbarrow + +all: + list='$(SUBDIRS)'; \ + for subdir in $$list; do \ + (cd $$subdir && $(MAKE)); \ + done + +clean: + list='$(SUBDIRS)'; \ + for subdir in $$list; do \ + (cd $$subdir && $(MAKE) clean); \ + done + -- 2.30.2